home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
ShareWare OnLine 2
/
ShareWare OnLine Volume 2 (CMS Software)(1993).iso
/
prog
/
pbc22b.zip
/
PBC$BAS.ZIP
/
REVD.BAS
< prev
next >
Wrap
BASIC Source File
|
1993-01-01
|
544b
|
12 lines
' +----------------------------------------------------------------------+
' | |
' | PBClone Copyright (c) 1990-1993 Thomas G. Hanlin III |
' | |
' +----------------------------------------------------------------------+
SUB ReverseD (Array() AS DOUBLE, Elements%)
FOR tmp% = 1 TO Elements% \ 2
SWAP Array(tmp%), Array(Elements% - (tmp% - 1))
NEXT
END SUB